home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Source Code / Add-Ons / Excel / ExcelTalk / XLSpeak.c < prev    next >
Encoding:
C/C++ Source or Header  |  1993-08-28  |  211 b   |  18 lines  |  [TEXT/KAHL]

  1.  
  2. #include     "Traps.h"
  3. #include    "Sound.h"
  4. #include    "Speech.h"
  5. #include    "xlcall.h"
  6.  
  7. // SpeakString
  8.  
  9. Boolean pascal main(unsigned char *teststring)
  10. {
  11.  
  12. OSErr err;
  13.  
  14.     err = SpeakString(teststring);
  15.     
  16.     return err;
  17.  
  18. }